Bump pango req to 1.49.1
authorMatthias Clasen <mclasen@redhat.com>
Sat, 4 Sep 2021 13:41:20 +0000 (09:41 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 5 Sep 2021 14:58:50 +0000 (10:58 -0400)
We are using pango api that was introduced in 1.49.1
without ifdefs, so we should require it.

.gitlab-ci/test-msys2.sh
meson.build

index a7a907d8dcd5a6bce2ba4621d5a6689ad4d44be3..d5ade5e6c91262671d2444a196d435553d5ed184 100644 (file)
@@ -48,7 +48,7 @@ if ! pkg-config --atleast-version=2.66.0 glib-2.0; then
 fi
 pkg-config --modversion glib-2.0
 
-if ! pkg-config --atleast-version=1.49.0 pango; then
+if ! pkg-config --atleast-version=1.49.1 pango; then
     git clone https://gitlab.gnome.org/GNOME/pango.git _pango
     meson setup _pango_build _pango
     meson compile -C _pango_build
index c6c69c850449d4fa3b94186d1414bd87ec175256..c0b5407a0d89951fe0195c4d7a26ebf74c95aaaa 100644 (file)
@@ -11,7 +11,7 @@ project('gtk', 'c',
         license: 'LGPL-2.1-or-later')
 
 glib_req           = '>= 2.66.0'
-pango_req          = '>= 1.49.0' # keep this in sync with .gitlab-ci/test-msys.sh
+pango_req          = '>= 1.49.1' # keep this in sync with .gitlab-ci/test-msys.sh
 fribidi_req        = '>= 0.19.7'
 cairo_req          = '>= 1.14.0'
 gdk_pixbuf_req     = '>= 2.30.0'